home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ For TASM / ALIASDOS.PAK / NEWUSER.C < prev    next >
C/C++ Source or Header  |  1996-02-21  |  796b  |  35 lines

  1. /*
  2.    newuser.c
  3.  
  4.    Copyright (c) 1993 by Borland International, Inc.
  5.  
  6.    This module links with library.lib using names with underscores.
  7.  
  8.    Part of the aliasdos example.
  9.  
  10.    Build using the provided makefile using: "make -B".
  11.       
  12. */
  13.  
  14. /* Prototypes for functions in library.lib. These prototypes are different
  15.    from the ones in the library and they will be resolved through aliasing. */
  16.  
  17. extern void Set_Coords( int x, int y );
  18. extern void Draw_Happy_Face( char c );
  19. extern void Print_Message( char * WhoIsIt );
  20.  
  21. #include <conio.h>
  22.  
  23. char Name[] = "New User Program";
  24.  
  25. int main()
  26. {
  27.    struct text_info ti;
  28.    gettextinfo( &ti );
  29.  
  30.    Set_Coords( ti.screenwidth / 2, ti.screenheight / 2 );
  31.    Draw_Happy_Face( 0x2 );
  32.    Print_Message( Name );
  33.    return 0;
  34. }
  35.